* @return the new region
*/
public static Region grow(Location loc) {
return Region.create(loc.x, loc.y, 1, 1, loc.getScreen());
}
//</editor-fold>
public static Region grow(Location loc) {
int _x = loc.x;
int _y = loc.y;
IScreen s = loc.getScreen();
if (s == null) {
_x = _y = 0;
s = Screen.getPrimaryScreen();
}
return Region.create(_x, _y, 1, 1, s);
}